home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / cups / backend / hpfax < prev    next >
Text File  |  2009-10-09  |  8KB  |  268 lines

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # (c) Copyright 2003-2009 Hewlett-Packard Development Company, L.P.
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  19. #
  20. # Author: Don Welch
  21. #
  22.  
  23. __version__ = '4.1'
  24. __title__ = 'CUPS Fax Backend (hpfax:)'
  25. __doc__ = "CUPS backend for PC send fax. Generally this backend is run by CUPS, not directly by a user. To send a fax as a user, run hp-sendfax or print to the device's CUPS fax queue."
  26.  
  27. # StdLib
  28. import sys
  29. import getopt
  30. import ConfigParser
  31. import os.path, os
  32. import syslog
  33. import time
  34. import operator
  35. import tempfile
  36.  
  37.  
  38. CUPS_BACKEND_OK = 0 # Job completed successfully
  39. CUPS_BACKEND_FAILED = 1 # Job failed, use error-policy
  40. CUPS_BACKEND_AUTH_REQUIRED = 2 # Job failed, authentication required
  41. CUPS_BACKEND_HOLD = 3 # Job failed, hold job
  42. CUPS_BACKEND_STOP = 4 #  Job failed, stop queue
  43. CUPS_BACKEND_CANCEL = 5 # Job failed, cancel job
  44.  
  45. PIPE_BUF = 4096
  46.  
  47. job_id = 0
  48. pid = os.getpid()
  49. config_file = '/etc/hp/hplip.conf'
  50. home_dir = ''
  51.  
  52.  
  53. def bug(msg):
  54.     syslog.syslog("hpfax[%d]: error: %s\n" % (pid, msg))
  55.     log.stderr("ERROR: %s\n" % msg)
  56.  
  57.  
  58. if os.path.exists(config_file):
  59.     config = ConfigParser.ConfigParser()
  60.     config.read(config_file)
  61.  
  62.     try:
  63.         home_dir = config.get('dirs', 'home')
  64.     except:
  65.         bug("Error setting home directory: home= under [dirs] not found.")
  66.         sys.exit(1)
  67. else:
  68.     bug("Error setting home directory: /etc/hp/hplip.conf not found")
  69.     sys.exit(1)
  70.  
  71. if not home_dir or not os.path.exists(home_dir):
  72.     bug("Error setting home directory: Home directory %s not found." % home_dir)
  73.     sys.exit(1)
  74.  
  75. sys.path.insert(0, home_dir)
  76. os.chdir(home_dir)
  77.  
  78. # HPLIP
  79. try:
  80.     from base.g import *
  81.     from base.codes import *
  82.     from base import device
  83.     from base import utils
  84.     from prnt import cups
  85. except ImportError, e:
  86.     bug("Error importing HPLIP modules: %s\n" % (pid, e))
  87.     sys.exit(1)
  88.  
  89. def handle_sigpipe():
  90.     syslog.syslog("SIGPIPE!")
  91.  
  92.  
  93. USAGE = [(__doc__, "", "para", True),
  94.          ("Usage: hpfax [job_id] [username] [title] [copies] [options]", "", "summary", True),
  95.          utils.USAGE_OPTIONS,
  96.          utils.USAGE_LOGGING1, utils.USAGE_LOGGING2, utils.USAGE_LOGGING3,
  97.          utils.USAGE_HELP,
  98.         ]
  99.  
  100. def usage(typ='text'):
  101.     if typ == 'text':
  102.         utils.log_title(__title__, __version__)
  103.  
  104.     utils.format_text(USAGE, typ, title=__title__, crumb='hpfax:')
  105.     sys.exit(CUPS_BACKEND_OK)
  106.  
  107. # Send dbus event to hpssd on dbus system bus
  108. def send_message(device_uri, printer_name, event_code, username, job_id, title, pipe_name=''):
  109.     args = [device_uri, printer_name, event_code, username, job_id, title, pipe_name]
  110.     msg = lowlevel.SignalMessage('/', 'com.hplip.StatusService', 'Event')
  111.     msg.append(signature='ssisiss', *args)
  112.  
  113.     SystemBus().send_message(msg)
  114.  
  115.  
  116. try:
  117.     opts, args = getopt.getopt(sys.argv[1:], 'l:hg', ['level=', 'help', 'help-rest', 'help-man'])
  118.  
  119. except getopt.GetoptError:
  120.     usage()
  121.  
  122. for o, a in opts:
  123.  
  124.     if o in ('-l', '--logging'):
  125.         log_level = a.lower().strip()
  126.         log.set_level(log_level)
  127.  
  128.     elif o == '-g':
  129.         log.set_level('debug')
  130.  
  131.     elif o in ('-h', '--help'):
  132.         usage()
  133.  
  134.     elif o == '--help-rest':
  135.         usage('rest')
  136.  
  137.     elif o == '--help-man':
  138.         usage('man')
  139.  
  140.  
  141. if len( args ) == 0:
  142.     cups11 = utils.to_bool(sys_conf.get('configure', 'cups11', '0'))
  143.  
  144.     try:
  145.         probed_devices = device.probeDevices(['usb', 'par'], filter={'fax-type': (operator.gt, 0)})
  146.     except Error:
  147.         sys.exit(CUPS_BACKEND_FAILED)
  148.  
  149.     good_devices = 0
  150.     for uri in probed_devices:
  151.         try:
  152.             back_end, is_hp, bus, model, serial, dev_file, host, zc, port = \
  153.                 device.parseDeviceURI(uri)
  154.         except Error:
  155.             continue
  156.  
  157.         mq = device.queryModelByModel(model)
  158.  
  159.         if mq.get('fax-type', FAX_TYPE_NONE) in (FAX_TYPE_SOAP,):
  160.             # HP Fax 2
  161.             if bus == 'usb':
  162.                 print 'direct %s "HP Fax 2" "%s USB %s HP Fax HPLIP" "MFG:HP;MDL:Fax 2;DES:HP Fax 2;"' % \
  163.                     (uri.replace("hp:", "hpfax:"), model.replace('_', ' '), serial)
  164.  
  165.             else: # par
  166.                 print 'direct %s "HP Fax 2" "%s LPT HP Fax HPLIP" "MFG:HP;MDL:Fax 2;DES:HP Fax 2;"' % \
  167.                     (uri.replace("hp:", "hpfax:"), model.replace('_', ' '))
  168.  
  169.         else:
  170.             # HP Fax
  171.             if bus == 'usb':
  172.                 print 'direct %s "HP Fax" "%s USB %s HP Fax HPLIP" "MFG:HP;MDL:Fax;DES:HP Fax;"' % \
  173.                     (uri.replace("hp:", "hpfax:"),  model.replace('_', ' '), serial)
  174.  
  175.             else: # par
  176.                 print 'direct %s "HP Fax" "%s LPT HP Fax HPLIP" "MFG:HP;MDL:Fax;DES:HP Fax;"' % \
  177.                     (uri.replace("hp:", "hpfax:"),  model.replace('_', ' '))
  178.  
  179.         good_devices += 1
  180.  
  181.     if good_devices == 0:
  182.         if cups11:
  183.             print 'direct hpfax:/no_device_found "HP Fax" "no_device_found" ""'
  184.         else:
  185.             print 'direct hpfax "Unknown" "HP Fax (HPLIP)" ""'
  186.  
  187.     sys.exit(CUPS_BACKEND_OK)
  188.  
  189. else:
  190.     try:
  191.         # dBus
  192.         import dbus
  193.         from dbus import SystemBus, lowlevel
  194.     except ImportError:
  195.         bug("HPLIP pc send fax requires dbus and python-dbus")
  196.         sys.exit(CUPS_BACKEND_FAILED)
  197.  
  198.     import warnings
  199.     # Ignore: .../dbus/connection.py:242: DeprecationWarning: object.__init__() takes no parameters
  200.     # (occurring on Python 2.6/dBus 0.83/Ubuntu 9.04)
  201.     warnings.simplefilter("ignore", DeprecationWarning)
  202.  
  203.     # CUPS provided environment
  204.     try:
  205.         device_uri = os.environ['DEVICE_URI']
  206.         printer_name = os.environ['PRINTER']
  207.     except KeyError:
  208.         bug("Improper environment: Must be run by CUPS.")
  209.         sys.exit(CUPS_BACKEND_FAILED)
  210.  
  211.     log.debug(args)
  212.  
  213.     try:
  214.         job_id, username, title, copies, options = args[0:5]
  215.         job_id = int(job_id)
  216.     except IndexError:
  217.         bug("Invalid command line: invalid arguments.")
  218.         sys.exit(CUPS_BACKEND_FAILED)
  219.  
  220.     send_message(device_uri, printer_name, EVENT_START_FAX_PRINT_JOB, username, job_id, title)
  221.  
  222.     try:
  223.         input_fd = file(args[5], 'r')
  224.     except IndexError:
  225.         input_fd = 0
  226.  
  227.     # REVISIT:
  228.     tmp_dir = '/tmp'
  229.     pipe_name = os.path.join(tmp_dir, "hpfax-pipe-%d" % job_id)
  230.  
  231.     # Create the named pipe. Make sure it exists before sending
  232.     # message to hppsd.
  233.     os.umask(0111)
  234.     try:
  235.         os.mkfifo(pipe_name)
  236.     except OSError:
  237.         os.unlink(pipe_name)
  238.         os.mkfifo(pipe_name)
  239.  
  240.     # Send dbus event to hpssd
  241.     send_message(device_uri, printer_name, EVENT_FAX_RENDER_COMPLETE, username, job_id, title, pipe_name)
  242.  
  243.     # REVISIT:
  244.     pipe = os.open(pipe_name, os.O_WRONLY)
  245.  
  246.     bytes_read = 0
  247.     while True:
  248.         data = os.read(input_fd, PIPE_BUF)
  249.  
  250.         if not data:
  251.             break
  252.  
  253.         os.write(pipe, data)
  254.         #syslog.syslog("Writing %d to pipe..." % len(data))
  255.         bytes_read += len(data)
  256.  
  257.     if not bytes_read:
  258.         bug("No data on input file descriptor.")
  259.         sys.exit(CUPS_BACKEND_FAILED)
  260.  
  261.     os.close(input_fd)
  262.     os.close(pipe)
  263.     os.unlink(pipe_name)
  264.  
  265.     send_message(device_uri, printer_name, EVENT_END_FAX_PRINT_JOB, username, job_id, title)
  266.  
  267.     sys.exit(CUPS_BACKEND_OK)
  268.